home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 29
/
Volume 29 - JOGO DISK .iso
/
Games
/
mud_rally.swf
/
scripts
/
DefineSprite_342
/
frame_1
/
DoAction.as
Wrap
Text File
|
2006-11-29
|
394b
|
18 lines
function ch(a)
{
a.xx = a.x + random(40) - 20;
a.yy = a.y + random(40) - 20;
}
stop();
motyl.c._alpha = 30;
this.x = this._x;
this.y = this._y;
this.xx = this._x + (random(40) - 20);
this.yy = this._y + (random(40) - 20);
this.i = setInterval(ch,300,this);
this.onEnterFrame = function()
{
this._x -= (this._x - this.xx) / 5;
this._y -= (this._y - this.yy) / 5;
};